home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / bmenu54.zip / MULTI.BAT < prev    next >
DOS Batch File  |  1990-02-12  |  948b  |  27 lines

  1. echo off
  2. echo 
  3. echo Example batch files for BMENU multi menu features
  4. echo 
  5. echo First example:  reading @file without adding optional menu designator
  6. echo                 will read @file up to first $menu label found...
  7. echo                 (ie. don't name first menu unless you will reference
  8. echo                      it every time you want the first menu in file)
  9. echo 
  10. echo bmenu @menus.fil
  11. echo 
  12. bmenu @menus.fil
  13. echo 
  14. echo Next example:  Reading @file to find $menu2 label in file.  Notice that
  15. echo                choices contain the $ symbol.  Just use quotes around
  16. echo                any choices that contain the $ symbol, and functionality
  17. echo                is retained.
  18. echo 
  19. echo bmenu @menus.fil menu2
  20. echo 
  21. bmenu @menus.fil menu2
  22. echo 
  23. echo Look in menus.fil for similar info, including comment usage...
  24. echo But note, any blank lines in the file are just that, blank choices.
  25. echo        
  26.   
  27.